home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / alia173c.zip / ALIA0423.DOC < prev    next >
Text File  |  1991-04-23  |  6KB  |  144 lines

  1.                    *****************************************
  2.                    *       A L I A 1 7 3 A / 0 9 2 3       *
  3.                    *             ---------------           *
  4.                    *               Release 1.0             *
  5.                    *               May 25,1990             *
  6.                    *              Originally a             *
  7.                    *            A STARWARE PRODUCT         *
  8.                    *                   by                  *
  9.                    *             John Zimmerman            *
  10.                    *                STARCOMM               *
  11.                    *             (707) 429-8218            *
  12.                    *                                       *
  13.                    *      Modified Code By Tom Hansen      *
  14.                    *            CHURCH CHATTERS            *
  15.                    *    (308)872-3394  & (308)872-6112     *
  16.                    *****************************************       
  17.  
  18. THIS is a minor BUG fix to the alias mods.  A blunt oversite on my part.
  19. the [] brackets around the U should have been () brackets.  This cause
  20. alot of unneeded headaches.  Hopefully this is a fix that is cheaper and
  21. more effective than the medicine we take for the headaches.  This should
  22. work with 17.3B.
  23.  
  24. FUNCTION AND PURPOSE OF ALIA173A
  25. --------------------------------
  26.  
  27. This is a modification to RBBS 173A which allows callers to leave messages
  28. under an alias name. You can define any number of conferences to have this
  29. capability.
  30.  
  31. With this modification installed, a caller who E)nters a message will be
  32. prompted with "From": At this prompt, they can leave any name they wish, up
  33. to a mximum of 30 characters. Thereafter, entry of the message proceeds
  34. normally. Alias messages can be either p[U]blic or (P)assword protected.
  35. They cannot be made p(R)ivate because RBBS looks at the caller's real name
  36. to determine who can read a private message. To further add to the real
  37. writer's anonymity, the time the message was written is suppressed, there-
  38. by preventing examination of the caller's log to determine who the writer
  39. really is.
  40.  
  41. Now, why would a responsible Sysop want to allow alias names? The primary
  42. reason is to support on-line games where the players frequently use aliases.
  43. With conferences supporting alias names, players can discuss strategy in
  44. more detail, or issue threats or challenges and still use the same name as
  45. in the games they are playing. The use of alias names can sometimes encourage
  46. callers to be a little looser about what they put in messages - obviously
  47. this can go to an extreme, and Sysops should use discretion when setting
  48. up these conferences.
  49.  
  50.  
  51. HOW TO INSTALL THIS MODIFICATION
  52. --------------------------------
  53.  
  54. Run the batch file to execute the changes as indicated in the Merge files
  55. (ALIA173A.BAT).
  56.  
  57.  
  58.  
  59.  
  60.  
  61. Last, create a file in the same directory as RBBS-PC.EXE named ALIAS.DEF.
  62. In this file, you need to have entries which specify the drive, subdirectory
  63. and the name of each conference message file that you want to have the alias
  64. capability.
  65.  
  66. Each conference is defined on a separate line. Make sure that the information
  67. is enclosed in quotes, and that everything is typed in uppercase. Terminate
  68. the file with F6 or Ctrl Z. The quickest way to create this file is through
  69. the use of the DOS COPY CON command. Here is an example:
  70.  
  71.                   copy con:alias.def
  72.                   "C:\RBBS\TWARSM.DEF"
  73.                   "C:\RBBS\SOAPSM.DEF"
  74.                   "C:\RBBS\LIARSM.DEF"
  75.                   ^Z
  76.  
  77. This example allows the TWARS, SOAPS and LIARS conferences to have alias
  78. names. Note that RBBS looks for "M.DEF" after the name of the conference.
  79. Upper case is critical! If you use lower case, it won't work.
  80.  
  81. PROBLEMS?
  82. ---------
  83. If this modification does not work for you, carefully check what you placed
  84. in the ALIAS.DEF file. If you're still stuck, post a message on STARCOMM,
  85. (707) 429-8218 explaining the difficulty. STARCOMM is a subscription BBS
  86. that normally requires a paid subscription to download files. You may, how-
  87. ever, always get the latest version of this and other STARWARE programs with-
  88. out a paid subscription by joining the STARWARE conference.
  89.  
  90. CHANGES
  91. -------
  92. June 1, 1988
  93.  
  94. In response to feedback, the code was modified to allow the use of more than
  95. one conference for alias names.
  96.  
  97. October 23, 1988
  98.  
  99. Modified to work with RBBS 171A. Code checks for the presence of the ALIAS.DEF
  100. file - if missing, program will NOT generate an error.
  101.  
  102. April 30, 1989
  103.  
  104. Updated documentation to reference RBBS 171D.
  105.  
  106. September 1, 1989
  107.  
  108. Modified code to work with RBBS 172B.
  109.  
  110.  
  111. Enjoy!
  112.  
  113. John Zimmerman
  114. Sysop
  115.  
  116. May 25, 1990 
  117.  
  118. Code Modified by Tom Hansen of Church Chatters (tm) BBS to conform with
  119. the new code of RBBS 173A  BATCH and Merge files provided with this release
  120. of ALIAS from Church Chatters (tm) BBS
  121.  
  122. October 9, 1990 Corrected some small errors in the Original ALIA173A merges.
  123. DATA: 308-872-3394 USRobotics COURIER HST /24hrs.
  124.  
  125.  
  126. -----------------------------------------------------------------------------       GOTO 2060
  127. -----------------------------------------------------------------------------
  128. THE FOLLOWING MODIFICATIONS ARE MADE TO RBBS-VAR.BAS:
  129. -----------------------------------------------------------------------------
  130.  
  131.  173A RBBS-VAR.BAS would read ZAliasFile$, _                          'Alias
  132.  
  133.  
  134.           ZAddDirSecurity, _
  135.           ZAdjustedSecurity, _
  136.           ZAdvanceProtoWrite, _
  137.           ZAliasFile$, _                                              'Alias
  138.           ZAllOpts$, _
  139.           ZAllowCallerTurbo, _
  140.           ZAllwaysStrewTo$, _
  141.  
  142.  
  143.  ------------------------------- END OF ALIA0923.DOC--------------------------
  144.